Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: Try to use object constructors for complex property values where possible #162

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

tterrag1098
Copy link

Something I ran into while trying to convert a project to use this was that complex valued types would often be given long JSON values as their defaults, when what I really expected was simply new Foo(). Additionally some complex objects, such as those with fields only in the parent's parent class, would generate invalid JSON.

This is a test of a new way to try to detect if a complex property's default value is equivalent to the value returned by its default constructor. If so, it will simply use new TheType() in the output typescript.

This is a draft as I'm not sure if you even want this feature, plus I'm sure it's missing some edge cases, such as what happens when the property type is not an exported class. Let me know your thoughts!

@tterrag1098 tterrag1098 force-pushed the auto_constructor_usage branch 2 times, most recently from 5af7a87 to ed29752 Compare December 15, 2023 05:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant